home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / bbs / tg_os2.zip / STARTDOS.ZIP / BIGDOS.CMD next >
OS/2 REXX Batch file  |  1993-08-27  |  391b  |  15 lines

  1. /* creates a larger conventional memory DOS session */
  2. parse arg szCommandComArgs
  3.  
  4. if 'STARTDOS' <> address()  then do
  5.   say 'Expected STARTDOS environment'
  6.   return 2
  7. end
  8.  
  9. rc = AddDosSetting( 'DOS_HIGH=1'  )
  10. rc = AddDosSetting( 'DOS_UMB=1'  )
  11.  
  12. /* the 12 blanks seem to be required by vdm mgr in os2 */
  13. rc = AddDosSetting( 'VIDEO_MODE_RESTRICTION=CGA            '  )
  14. return 0
  15.